Skip to main content

fridgetaginfo

Table: fridgetaginfo

The fridgetaginfo table stores basic identification and audit information for fridge tags.
It is used to track fridge serial numbers, QR codes, and creation/edit history.


Columns

Column NameData TypeConstraintsDescription
idbigint(20)NOT NULL, AUTO_INCREMENTUnique identifier for each fridge tag info record
createdDatedatetimeNULLTimestamp when the record was created
lastEditedDatedatetimeNULLTimestamp when the record was last modified
ftQRCodevarchar(255)NULLQR code associated with the fridge tag
ftSerialNumbervarchar(255)NULLSerial number of the fridge tag
voidedtinyint(1)NULLSoft deletion flag (1 = voided, 0 = active)
createdByUserIdint(11)NULLUser who created the record
lastEditedByUserIdint(11)NULLUser who last edited the record

Indexes

  1. PRIMARY - Primary key on id

Foreign Key Relations

  • None explicitly defined, but createdByUserId and lastEditedByUserId typically reference user.mappedId.

Usage Notes

  • Stores identification data for fridge tags, such as serial numbers and QR codes.
  • voided allows soft deletion without removing historical records.
  • Audit fields (createdByUserId, lastEditedByUserId, createdDate, lastEditedDate) help track changes.
  • Serves as a reference for linking fridge tags with monitoring records in fridgetag and other cold chain tables.